home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / include / symm.md / RCS / setjmp.h,v < prev    next >
Text File  |  1991-06-06  |  685b  |  56 lines

  1. head     1.2;
  2. branch   ;
  3. access   ;
  4. symbols  ;
  5. locks    ; strict;
  6. comment  @ * @;
  7.  
  8.  
  9. 1.2
  10. date     91.06.05.23.32.59;  author kupfer;  state Exp;
  11. branches ;
  12. next     1.1;
  13.  
  14. 1.1
  15. date     91.06.05.21.38.14;  author kupfer;  state Exp;
  16. branches ;
  17. next     ;
  18.  
  19.  
  20. desc
  21. @Definitions for setjmp.
  22. @
  23.  
  24.  
  25. 1.2
  26. log
  27. @Add function prototypes for setjmp and longjmp.
  28. @
  29. text
  30. @/*    setjmp.h    4.1    83/05/03    */
  31. /* $Header$ */
  32.  
  33. #include <cfuncproto.h>
  34.  
  35. /*
  36.  * Only 10 words are needed for the VAX, but 15 for the Sun.  Use the
  37.  * larger of the two.
  38.  */
  39.  
  40. typedef int jmp_buf[15];
  41.  
  42. extern int setjmp _ARGS_((jmp_buf));
  43. extern void longjmp _ARGS_((jmp_buf, int));
  44. @
  45.  
  46.  
  47. 1.1
  48. log
  49. @Initial revision
  50. @
  51. text
  52. @d2 1
  53. d4 1
  54. d12 3
  55. @
  56.